home *** CD-ROM | disk | FTP | other *** search
- /////////////////////////////////////////////////////////////////////////////
- // AXFORM.H - Base class used by Active Forms
- //
- // $Revision: 1.0.1.1 $
- // $Date: 31 Jan 1998 14:11:36 $
- //
- // Copyright (c) 1998 Borland International
- /////////////////////////////////////////////////////////////////////////////
- #ifndef __AXFORM_H
- #define __AXFORM_H
-
- #include <forms.hpp>
-
- // TActiveForm: Base class for a VCL Form exposed as an OCX Control
- //
- class TActiveForm : public Forms::TCustomActiveForm
- {
- typedef Forms::TCustomActiveForm inherited;
- public:
- __fastcall virtual TActiveForm(HWND ParentWindow): Forms::TCustomActiveForm(ParentWindow) {}
- __fastcall virtual TActiveForm(TComponent* AOwner): Forms::TCustomActiveForm(AOwner) {}
- };
-
-
- #endif // __AXFORM_H
-